Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. It is available for MySQL, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.
License
GNU General Public License version 2.0 (GPLv2), Apache License V2.0
You Might Also Like
Our Free Plans just got better! | Auth0 by Okta
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
Excellent! I added one single condition and I can select a different CSS file for each database, just creating a css file with the database name. Its let me now when I am connected to production or testing database (clear theme and dark theme). The modified file is adminer/include/adminer.inc.php /** Get URLs of the CSS files * @return array of strings */ function css() { $return = array(); $filename = DB.".css"; $cssDefault = "adminer.css"; if (file_exists($filename)) { $return[] = "$filename?v=" . crc32(file_get_contents($filename)); }elseif(file_exists($cssDefault)){ $return[] = "$cssDefault?v=" . crc32(file_get_contents($cssDefault)); } return $return; }
-
Yep .. Better than 'Bloated PhpMyAdmin' but still appreciate phpmyadmin in the old days for helping out newbies ... but adminer is just awesome .. Single File !!!!!
-
Excellent tool.
-
great piece of a tool!
-
I am very impressed with the simplicity of the installation and the operation. Adminer has all the functionality that I've ever needed and quite a bit that I've never even thought of, yet none of that gets in the way. The UI is so intuitive to use that I have yet to need any help. In addition the help links that link directly to the mariadb knowledge base make syntax lookups effortless. I'll never go back to phpmyadmin or any of the desktop apps as long as adminer is maintained. Thank you for a refreshing sql alternative.